From: Martin Rudalics Date: Mon, 2 Jul 2007 05:43:45 +0000 (+0000) Subject: (help-make-xrefs): Skip spaces too when skipping tabs. X-Git-Tag: archive/raspbian/1%29.2+1-2+rpi1~1^2~534^2~3^2~2306 X-Git-Url: https://dgit.raspbian.org/%22http:/www.example.com/cgi/%22https:/www.github.com/%22bookmarks:///%22http:/www.example.com/cgi/%22https:/www.github.com/%22bookmarks:/?a=commitdiff_plain;h=36b88e11c3194057f470724200703f7a6459753a;p=emacs.git (help-make-xrefs): Skip spaces too when skipping tabs. --- diff --git a/lisp/help-mode.el b/lisp/help-mode.el index afaf06bec3c..3da2a23efc4 100644 --- a/lisp/help-mode.el +++ b/lisp/help-mode.el @@ -462,7 +462,7 @@ that." ;; Skip a single blank line. (and (eolp) (forward-line)) (end-of-line) - (skip-chars-backward "^\t\n") + (skip-chars-backward "^ \t\n") (if (and (>= (current-column) col) (looking-at "\\(\\sw\\|-\\)+$")) (let ((sym (intern-soft (match-string 0))))